home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / emacs-complete / fsf / emacs / lisp / dissociate.el < prev    next >
Lisp/Scheme  |  1994-07-26  |  3KB  |  101 lines

  1. ;;; dissociate.el --- scramble text amusingly for Emacs.
  2.  
  3. ;; Copyright (C) 1985 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: games
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;; The single entry point, `dissociated-press', applies a travesty
  27. ;; generator to the current buffer.  The results can be quite amusing.
  28.  
  29. ;;; Code:
  30.  
  31. ;;;###autoload
  32. (defun dissociated-press (&optional arg)
  33.   "Dissociate the text of the current buffer.
  34. Output goes in buffer named *Dissociation*,
  35. which is redisplayed each time text is added to it.
  36. Every so often the user must say whether to continue.
  37. If ARG is positive, require ARG chars of continuity.
  38. If ARG is negative, require -ARG words of continuity.
  39. Default is 2."
  40.   (interactive "P")
  41.   (setq arg (if arg (prefix-numeric-value arg) 2))
  42.   (let* ((inbuf (current-buffer))
  43.      (outbuf (get-buffer-create "*Dissociation*"))
  44.      (move-function (if (> arg 0) 'forward-char 'forward-word))
  45.      (move-amount (if (> arg 0) arg (- arg)))
  46.      (search-function (if (> arg 0) 'search-forward 'word-search-forward))
  47.      (last-query-point 0))
  48.     (if (= (point-max) (point-min))
  49.     (error "The buffer contains no text to start from"))
  50.     (switch-to-buffer outbuf)
  51.     (erase-buffer)
  52.     (while
  53.       (save-excursion
  54.     (goto-char last-query-point)
  55.     (vertical-motion (- (window-height) 4))
  56.     (or (= (point) (point-max))
  57.         (and (progn (goto-char (point-max))
  58.             (y-or-n-p "Continue dissociation? "))
  59.          (progn
  60.            (message "")
  61.            (recenter 1)
  62.            (setq last-query-point (point-max))
  63.            t))))
  64.       (let (start end)
  65.     (save-excursion
  66.      (set-buffer inbuf)
  67.      (setq start (point))
  68.      (if (eq move-function 'forward-char)
  69.          (progn
  70.            (setq end (+ start (+ move-amount (random 16))))
  71.            (if (> end (point-max))
  72.            (setq end (+ 1 move-amount (random 16))))
  73.            (goto-char end))
  74.        (funcall move-function
  75.             (+ move-amount (random 16))))
  76.      (setq end (point)))
  77.     (let ((opoint (point)))
  78.       (insert-buffer-substring inbuf start end)
  79.       (save-excursion
  80.        (goto-char opoint)
  81.        (end-of-line)
  82.        (and (> (current-column) fill-column)
  83.         (do-auto-fill)))))
  84.       (save-excursion
  85.        (set-buffer inbuf)
  86.        (if (eobp)
  87.        (goto-char (point-min))
  88.      (let ((overlap
  89.         (buffer-substring (prog1 (point)
  90.                      (funcall move-function
  91.                           (- move-amount)))
  92.                   (point))))
  93.        (goto-char (1+ (random (1- (point-max)))))
  94.        (or (funcall search-function overlap nil t)
  95.            (let ((opoint (point)))
  96.          (goto-char 1)
  97.          (funcall search-function overlap opoint t))))))
  98.       (sit-for 0))))
  99.  
  100. ;;; dissociate.el ends here
  101.